x86/EFI: fix interrupt and fault handling during runtime services calls
authorJan Beulich <jbeulich@novell.com>
Fri, 1 Jul 2011 19:41:43 +0000 (20:41 +0100)
committerJan Beulich <jbeulich@novell.com>
Fri, 1 Jul 2011 19:41:43 +0000 (20:41 +0100)
The missing piece was the setting up of an accessible GDT prior to
switching page tables (and reverting to the original setting after
having established the normal page tables again afterwards).

Signed-off-by: Jan Beulich <jbeulich@novell.com>
xen/arch/x86/efi/runtime.c

index 8274e22f3e1924db29d5288aa377090263a24a19..6286b6a1c85b12f2700f09553abb402eb194b421 100644 (file)
@@ -44,6 +44,17 @@ unsigned long efi_rs_enter(void)
     /* prevent fixup_page_fault() from doing anything */
     irq_enter();
 
+    if ( !is_hvm_vcpu(current) && !is_idle_vcpu(current) )
+    {
+        struct desc_ptr gdt_desc = {
+            .limit = LAST_RESERVED_GDT_BYTE,
+            .base  = (unsigned long)(per_cpu(gdt_table, smp_processor_id()) -
+                                     FIRST_RESERVED_GDT_ENTRY)
+        };
+
+        asm volatile ( "lgdt %0" : : "m" (gdt_desc) );
+    }
+
     write_cr3(virt_to_maddr(efi_l4_pgtable));
 
     return cr3;
@@ -52,6 +63,15 @@ unsigned long efi_rs_enter(void)
 void efi_rs_leave(unsigned long cr3)
 {
     write_cr3(cr3);
+    if ( !is_hvm_vcpu(current) && !is_idle_vcpu(current) )
+    {
+        struct desc_ptr gdt_desc = {
+            .limit = LAST_RESERVED_GDT_BYTE,
+            .base  = GDT_VIRT_START(current)
+        };
+
+        asm volatile ( "lgdt %0" : : "m" (gdt_desc) );
+    }
     irq_exit();
     spin_unlock(&efi_rs_lock);
 }